home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000144_news@columbia.edu _Mon Aug 5 16:12:04 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id QAA19171 for <kermit.misc@watsun.cc.columbia.edu>; Mon, 5 Aug 1996 16:11:59 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id QAA18705 for kermit.misc@watsun; Mon, 5 Aug 1996 16:11:58 -0400 (EDT)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!tera.mcom.com!news.Stanford.EDU!agate!howland.reston.ans.net!swrinde!cssun.mathcs.emory.edu!cs.utk.edu!utk.edu!dogwood3!sad
  5. From: sad@utkux.utcc.utk.edu (Deutscher)
  6. Newsgroups: comp.protocols.kermit.misc,comp.os.os2.comm
  7. Subject: Re: Telnet between OS/2 machines using C-Kermit problem.
  8. Followup-To: comp.protocols.kermit.misc,comp.os.os2.comm
  9. Date: 5 Aug 1996 15:08:05 GMT
  10. Organization: University of Tennessee
  11. Lines: 91
  12. Message-ID: <4u52ol$sh@gaia.ns.utk.edu>
  13. References: <4tr701$jb8@gaia.ns.utk.edu> <4u3lcq$rl5@apakabar.cc.columbia.edu>
  14. Reply-To: sad@utk.edu
  15. NNTP-Posting-Host: dogwood3.utcc.utk.edu
  16. X-Newsreader: TIN [version 1.2 PL2]
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:5715 comp.os.os2.comm:8624
  18.  
  19. Jeffrey Altman (jaltman@watsun.cc.columbia.edu) wrote:
  20. : In article <4tr701$jb8@gaia.ns.utk.edu>,
  21. : Deutscher <sad@utkux.utcc.utk.edu> wrote:
  22. : : Hi,
  23. : :  I have C-Kermit 5A(191) running under OS/2 as telnet replacement 
  24. : : and am very happy with it as long as I connect to UNIX boxes and VAXes.
  25. : : Once in a while I telnet into other OS/2 machines, and that is where the
  26. : : fun is gone:
  27. : : I can't use arrow keys on the command line, can't use home/end/ ...
  28. : : keys, can't use function keys. So, command line editing is a pain.
  29. : : I can use these keys, once I am in an app (say, vi or vim or so),
  30. : : but compiling in another, idle machine is not very much fun when I have to
  31. : : type the same stuff all the time again instead of recalling the last
  32. : : command. I was blaming it mistakenly on OS/2s poor terminal emulation, 
  33. : : and a few days ago, when I set up another Warp Connect box I got a surprise:
  34. : : With the plain Warp telnet I can telnet into another OS/2 box and use 
  35. : : it's command line as if I was there!
  36. : : 
  37. : : For now I have copied the original telnet.exe onto otelnet.exe and use
  38. : : this between OS/2 machines, but I was wondering whether there is a way
  39. : : to tell Ckermit for OS/2 to give me the same ease of use. I do miss the
  40. : : scrollback buffer for instance, in the original telnet.
  41. : : 
  42. : : The same holds when I telnet from my UNIX box into my OS/2 box (even though I
  43. : : think that that may not be only relted to Ckermit. ANyway, I still can't use
  44. : : all arrow keys and such.
  45. : : 
  46. : : Any pointers are appreciated!   Stefan
  47.  
  48.  
  49. : Setup Kermit for an incoming telnet connection.
  50.  
  51. It seems that requires to kill the IBM tcp/ip telnetd process ? If I don't
  52. I get an error message:
  53.  
  54.   [D:\TMP] C-Kermit>set host *
  55.   Sorry, can't open connection: *:23
  56.  
  57. So I killed telnetd.exe and then typed 
  58.  
  59.   [D:\TMP] C-Kermit>set host *
  60.   Waiting for a TCP/IP connection on port 23 ...
  61.  
  62. Then I started the IBM telnet, telnetting into my own machine, and it gave
  63. me a 
  64.  
  65.   Connected to : beta.phys.utk.edu
  66.   Escape character is '^]'
  67.  
  68. and there it sits since. No login prompt, nothing anymore. (I am using
  69. loginunx.exe instead of login.exe, but I also replaced it with login.exe
  70. and still nothing goes). Interesting enough, the ckermit instance that 
  71. is acting as the telnet server just gave me back its prompt:
  72.  
  73.   [D:\TMP] C-Kermit>
  74.  
  75. Am I missing something? As I type quit on the server command prompt
  76. the telnet session also gets closed. When I then completely exit ckermit
  77. and try to retart telnetd.exe I get another error message:
  78.  
  79.   [D:\tcpip\bin]telnetd.exe
  80.   Bind(): Address already in use
  81.  
  82. even though I did close ckermit. Quite odd.
  83.  
  84. : Telnet to it with IBM Telnet.
  85. : While in Kermit Terminal DEBUG mode, press each key on the IBM Telnet keyboard
  86. : record their values. 
  87.  
  88. Well, I never got here, alas!
  89.  
  90. : When you are done, use the Kermit SET KEY command to assign each key the 
  91. : sequence you want sent.
  92.  
  93. I hope I get it set up, because that might also allow me to telnet into
  94. the OS/2 machine from UNIX cleanly (or would that require a different
  95. terminal termcap entry on the unix side, where I use the normal unix
  96. telnet)?
  97. Can ckermit, in telnet server mode, be set up to do the key mapping locally,
  98. say, depending on the incoming connection?
  99. Am I really the only one who wants to do this kind of thing?
  100.  
  101. Cheers!   Stefan
  102.  
  103. ==========================================================================
  104. Stefan A. Deutscher, sad@utk.edu, (001)-423-[522-7845|974-7838|574-5897]
  105.                                              home^    UTK^     ORNL^
  106. ==========================================================================
  107. If there is software you'd like to have in a native version, visit the:
  108. OS/2 E-mail Campaign Page http://www.andrews.edu/~boyko/email.html
  109. --------------------------------------------------------------------------